
/* --------------------------------------------------
  幅800px以下のスタイル指定 ここから
-------------------------------------------------- */

@media screen and (max-width: 800px) {
  * {
    margin: 0px;
    padding: 0px;
    font-family: 'Arial', 'Courier', 'メイリオ', sans-serif;
  }
  /* ハンガーメニュー */
  /* ハンガーメニュー ボタン作成*/
  .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #3584bb;
  }
  .menu-btn span, .menu-btn span:before, .menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
  }
  .menu-btn span:before {
    bottom: 8px;
  }
  .menu-btn span:after {
    top: 8px;
  }
  /* ハンガーメニュー チェック後ボタン*/
  #menu-btn-check:checked~.menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
  }
  #menu-btn-check:checked~.menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #menu-btn-check:checked~.menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  /* ハンガーメニュー チェック削除*/
  #menu-btn-check {
    display: none;
  }
  /* ハンガーメニュー画面*/
  .menu-content {
    width: 80%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #3584bb;
    opacity: 0.95;
  }
  .menu-content ul {
    padding: 70px 10px 0;
  }
  .menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
  }
  .menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
  }
  .menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
  }
  /* メニュー移動 */
  .menu-content {
    width: 80%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #3584bb;
    transition: all 0.5s;
    /*アニメーション設定*/
  }
  /* メニュー　チェック後　*/
  #menu-btn-check:checked~.menu-content {
    left: 20%;
    /*メニューを画面内へ*/
  }
  /* header */
  .menu-content-pc {
    display: none;
  }
  header {
    padding: 10px 0 0 0;
    float: left;
    display: table;
    z-index: 500;
    width: 100%;
    height: 70px;
    position: fixed;
    background: white;
  }
  /*   header画像 */
  .header-img-sp img {
    padding: 5px 0 5px 0;
    max-height: 70px;
    max-width: 100%;
  }
  /*  header画像　div  */
  .section-header-img-sp {
    width: 80%;
    height: 70px;
    vertical-align: middle;
  }
  .section-header-img-pc {
    display: none;
  }
  /*-----------------footer------------*/
  footer a {
    font-size: 12px;
    text-decoration: none;
    color: black;
  }
  .footer-info-name {
    font-size: 12px;
  }
  footer h2 {
    font-size: 14px;
  }
  footer {
    background: #e6e6fa;
    margin: 3% 0 0 0;
  }
  .footer-menu ul {
    padding: 3%;
    list-style: none;
    column-count: 3;
  }
  .footer-menu{
    text-align: left;
    padding: 3%;
  }
  .footer-info-name {
  text-align: center;
    padding: 2%;  
  }
  .footer-message {
    padding: 2%;
  }
  .footer-img {
    width: 95%;
    text-align: center;
  }
  .footer-img img {
    width: 80%;
    max-width:400px;
  }
  /***追従するトップへ戻るボタン***/
  #page-top {
    position: fixed;
    right: 5px;
    bottom: 20px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: #737373;
    padding: 0 0 0 35px;
    border-top: solid 1px;
    transition: all 1.5s;
    /*アニメーション設定*/
  }
  #page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
    transition: all 1.5s;
    /*アニメーション設定*/
  }
  /***トップへ戻るボタンここまで***/
}